-- card: 24119 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 10579 -- name: test 4 ----- HyperTalk script ----- on openCard global inprogress if inprogress is false then show cd fld "instruction 1" hide cd fld "ClicktoContinue" show cd btn "Check my Answers" --repeat with f = 15 to 20 --hide cd fld f --end repeat repeat with x = 1 to 5 hide cd fld ("responses" && x) end repeat end openCard on closeCard global maploc, cardloc put word 1 of the short name of this card into maploc put word 2 of the short name of this card into cardloc push card end closeCard -- part 1 (field) -- low flags: 01 -- high flags: 4000 -- rect: left=443 top=95 right=112 bottom=507 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: answer 1 ----- HyperTalk script ----- on mouseup toggleResponses end mouseup -- part 2 (field) -- low flags: 01 -- high flags: 4000 -- rect: left=385 top=158 right=176 bottom=492 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: answer 2 ----- HyperTalk script ----- on mouseup toggleResponses end mouseup -- part 3 (field) -- low flags: 01 -- high flags: 4000 -- rect: left=465 top=223 right=241 bottom=488 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: answer 3 ----- HyperTalk script ----- on mouseup toggleResponses end mouseup -- part 6 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=26 top=55 right=133 bottom=108 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 1 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 8 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=29 top=115 right=191 bottom=116 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 2 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 9 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=82 top=194 right=270 bottom=109 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 3 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 10 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=12 top=269 right=342 bottom=49 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 4 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 11 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=7 top=140 right=218 bottom=79 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 5 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 7 (field) -- low flags: 81 -- high flags: 0007 -- rect: left=384 top=19 right=105 bottom=512 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: Your Responses -- part 13 (field) -- low flags: 81 -- high flags: 0002 -- rect: left=369 top=19 right=105 bottom=385 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: Your Answers -- part 14 (field) -- low flags: 81 -- high flags: 0002 -- rect: left=88 top=3 right=48 bottom=106 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: our Answers -- part 15 (field) -- low flags: 81 -- high flags: 0002 -- rect: left=0 top=25 right=113 bottom=53 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: memoList -- part 18 (button) -- low flags: 00 -- high flags: A003 -- rect: left=132 top=312 right=339 bottom=274 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: Check my answers ----- HyperTalk script ----- on mouseUp global memolist, testNumber, inProgress put "" into memolist set the cursor to busy put 1 into r repeat with r = 1 to the number of lines in cd fld "Our Answers" if line r of cd fld "your Responses" is "" then answer "You're not done, yet!" with "Ooops!" put true into tryAgain exit mouseup else put 1 into rLine put false into tryAgain repeat with r = 1 to the number of lines of cd fld "Our Answers" if line rLine of cd fld "Your Answers" is in line rLine of cd fld "Our Answers" then put true into okAnswer else put false into okAnswer end if if okAnswer then put true into line rline of cd fld "memoList" put true into item r of memolist else put false into line rline of cd fld "memolist" put false into item r of memolist end if add 1 to rLine end repeat end if end repeat if tryAgain is false then set cursor to hand hide cd btn "Check my answers" show cd fld "clicktocontinue" end if put "4" into testnumber repeat with i = 1 to the number of lines of cd fld "MemoList" put ("review" && i) into theButton set the hilite of cd btn theButton to true get line i of cd fld "MemoList" if it is true then put ("comment" && i && "true") into theComment show cd fld theComment else put ("comment" && i && "false") into theComment show cd fld theComment end if wait until the mouseclick set the hilite of cd btn theButton to false hide cd fld theComment end repeat hide cd fld "clicktocontinue" if cd fld "MemoList" contains "False" then answer "Do you want to try again?" with "Yes" or "No" if it is "Yes" then put empty into cd fld "memolist" put true into inProgress show cd btn "Check my Answers" send opencard exit mouseup else ScoreReview end if else ScoreReview end if end mouseUp -- part 24 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=442 top=92 right=113 bottom=506 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: review 1 ----- HyperTalk script ----- on mouseUp hide card field "instruction 1" toggleResponses end mouseUp -- part 25 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=386 top=156 right=175 bottom=495 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: review 2 ----- HyperTalk script ----- on mouseUp toggleResponses end mouseUp -- part 26 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=465 top=222 right=240 bottom=485 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: review 3 ----- HyperTalk script ----- on mouseUp toggleResponses end mouseUp -- part 29 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=33 top=0 right=81 bottom=319 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 1 false -- part 30 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=109 top=132 right=247 bottom=398 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 1 true -- part 31 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=31 top=73 right=153 bottom=368 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 2 false -- part 32 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=79 top=195 right=290 bottom=338 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 2 true -- part 34 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=112 top=159 right=222 bottom=435 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 3 false -- part 35 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=276 top=158 right=219 bottom=442 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 3 true -- part 41 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=59 top=312 right=341 bottom=277 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 157 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: ClicktoContinue -- part 45 (field) -- low flags: 81 -- high flags: 0007 -- rect: left=0 top=20 right=331 bottom=129 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: instruction 1 ----- HyperTalk script ----- on mouseup hide me end mouseup -- part 48 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=484 top=317 right=342 bottom=512 -- title width / last selected line: 0 -- icon id / first selected line: 18613 / 18613 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: return ----- HyperTalk script ----- on mouseUp go card "test 0" end mouseUp -- part contents for background part 10 ----- text ----- Compatability (Hardware) -- part contents for background part 4 ----- text ----- Macintosh Display Card 4•8 and 8•24 -- part contents for background part 5 ----- text ----- Training Evaluation -- part contents for card part 6 ----- text ----- all RGB all color 24-bit -- part contents for card part 8 ----- text ----- new modular color 16MHz -- part contents for card part 9 ----- text ----- 2 4 3 1 -- part contents for card part 10 ----- text ----- 10 20 30 50 -- part contents for card part 11 ----- text ----- three five ten 150 -- part contents for card part 14 ----- text ----- 1 2 4 -- part contents for card part 29 ----- text ----- No. This is a major advantage. Please review for this information. -- part contents for card part 30 ----- text ----- Absolutely! This card automatically checks to see which monitor is connected and makes the appropriate adjustments. (Plug-'n-Play) -- part contents for card part 31 ----- text ----- Wrong. The Display Cards need slots to operate. -- part contents for card part 32 ----- text ----- Yes. These Display Cards can only be used in a Modular Macintosh II, IIx, IIcx, IIci or Zone 5. -- part contents for card part 34 ----- text ----- No. This only requires a single NuBus slot. -- part contents for card part 35 ----- text ----- Correct! -- part contents for card part 41 ----- text ----- Click the mouse to continue. -- part contents for card part 45 ----- text ----- Instructions: (click on this text to hide it) 1. Click on the blank line. A list of choices appears 2. Click on the choice you want, it appears in the sentence. You can change any of your choices by clicking on it, then selecting another choice. 3. When you’ve completed the entries, click on the “Check my Answers” button. During the review, you’ll find out whether you made the correct choices. Afterwards, you can try again or go back to the menu for this section. -- part contents for background part 6 ----- text ----- The Macintosh Display Cards 4•8 and 8•24 support Apple displays. These display cards can be used only with Macintosh computers. The total number of NuBus slots these cards requires is . -- part contents for card part 7 ----- text ----- -- part contents for card part 13 ----- text ----- 5 5 5 -- part contents for card part 15 ----- text ----- true true true